In part based on Fortran code from Furio Ercolessi.
In [1]:
from IPython.core.display import HTML
css_file = 'https://raw.githubusercontent.com/ngcm/training-public/master/ipython_notebook_styles/ngcmstyle.css'
HTML(url=css_file)
Out[1]:
In [2]:
%matplotlib inline
import numpy
from matplotlib import pyplot
from mpl_toolkits.mplot3d.axes3d import Axes3D
from matplotlib import rcParams
rcParams['font.family'] = 'serif'
rcParams['font.size'] = 16
rcParams['figure.figsize'] = (12,6)
The basic idea of molecular dynamics is to follow the location of the particles in time using Newton's laws. Each particle has a location $\vec{X}_i$ which obeys
$$ \begin{equation} m_i \frac{d^2}{d t^2} \vec{X}_i = m_i \vec{A}_i = -\nabla V \left( \vec{X}_1, \dots, \vec{X}_N \right). \end{equation} $$Most of the time we will work in computational coordinates, rescaled by a reference length $L$, so that the particles obey
$$ \begin{equation} \frac{d^2}{d t^2} \vec{x}_i = \vec{a}_i = -\nabla V \left( \vec{x}_1, \dots, \vec{x}_N \right). \end{equation} $$This gives us a computational domain, once translated to the centre-of-mass, of $\vec{x} \in [-0.5, 0.5]^3$.
The simplest possibility is that the interaction potential $V$ is the sum of pairwise interactions,
$$ \begin{equation} V \left( \vec{x}_1, \dots, \vec{x}_N \right) = \sum_i \sum_{j>i} \phi \left( L \left| \vec{x}_i - \vec{x}_j \right| \right). \end{equation} $$The most commonly used pairwise interaction potential is the Lennard-Jones potential
$$ \begin{equation} \phi(r) = 4 \varepsilon \left[ \left( \frac{\sigma}{r} \right)^{12} - \left( \frac{\sigma}{r} \right)^{6} \right]. \end{equation} $$To stop this potential extending for infinite distance a cutoff is used; $\phi(r) \to \phi(r) - \phi(R_c)$, where $R_c$ is a constant (here $2.5$ when $\sigma = 1 = \varepsilon = M_i$).
As, in this case,
$$ \begin{equation} \frac{d}{dr} \phi(r) = 24 \left[ 2 \left( \frac{1}{r} \right)^{14} - \left( \frac{1}{r} \right)^{8} \right], \end{equation} $$we have
$$ \begin{equation} \vec{a}_i = -\left. \nabla V \right|_{i} = \sum_{j>i} (\vec{x}_i - \vec{x}_j) \, \frac{d}{dr} \phi(r) - \sum_{j<i} (\vec{x}_j - \vec{x}_i) \, \frac{d}{dr} \phi(r). \end{equation} $$Note that Newton's third law means that the force on particle $i$ from particle $j$ must be exactly opposite to the force on particle $j$ from particle $i$. So the algorithm can be implemented by setting $\vec{a}_i = 0$ and, for each particle $i$, and for all $j > i$, setting both
Implement an algorithm to calculate the acceleration given the positions.
In [3]:
The problem with time integrating is that most numerical algorithms do not conserve the total energy of the system, which can be be crucial. Certain algorithms, such as the velocity Verlet algorithm, do conserve total energy.
Given initial positions $\vec{x}$ and velocities $\vec{v}$ of each particle, the algorithm can be written as
Implement this algorithm.
In [4]:
If we just evolved the particles, they could fly off to infinity. Instead it is typical to work inside a box with periodic boundaries, so that there is an "infinite lattice" of particles.
Implement a function that resets the position of particles that leave the given domain; the velocities and particles should remain unchanged.
In [5]:
The fundamental quantity is the location of the particles. However, the thing to analyze will be average properties of the particles; their mean temperature, pressure and energies.
Implement a function, given the particle locations $\vec{x}$ to compute the temperature, where
$$ \begin{align} % E_{\text{potential},\ i} &= \sum_{j /ne i} \phi \left( L \left| \vec{x}_i - \vec{x}_j \right| \right), \\ E_{\text{kinetic},\ i} &= \tfrac{1}{2} L^2 \left| \vec{v}_i \right|^2, \\ T & = \frac{2}{3 N} \sum_{i=1}^N E_{\text{kinetic},\ i}. \end{align} $$
In [6]:
Fix the domain to be $\vec{x} \in [0, 6.1984]^3$. Fix the timestep to be $0.005$ and take 100 timesteps, given the initial data prescribed in input.dat
(see input.dat
on Blackboard).
In [7]:
Then plot some basic quantities, such as
plot3D
);
In [ ]: